collection
Functions
Link copied to clipboard
Adds all elements from another collection to this collection.
Link copied to clipboard
Adds all elements from another collection to this collection.
Alias
add_all
Link copied to clipboard
Checks if the collection contains all elements of another collection.
Link copied to clipboard
Checks if the collection contains all elements of another collection.
Alias
Link copied to clipboard
pure function join_to_text([separator: text], [prefix: text], [postfix: text], [limit: integer?], [truncated: text], [transform: (T) -> text]): text
Creates a text from all the elements separated using separator
and using the given prefix
and postfix
if supplied.
If the iterable is large, you can specify a non-negative value of limit
, in which case only the first limit
of elements will be appended, followed by the truncated
text (which defaults to "...").
Link copied to clipboard
Removes all elements from the collection that are present in another collection.
Link copied to clipboard
Removes all elements from the collection that are present in another collection.
Alias